"use client"; import { usePathname } from "@/i18n/routing"; import { AnimatePresence, motion } from "framer-motion"; import { ReactNode } from "react"; const Template = ({ children }: { children: ReactNode }) => { const key = usePathname(); return ( {children} ); }; export default Template;